home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / RadioMatrixAssociation / RadioAssociation.h < prev    next >
Encoding:
Text File  |  1994-09-03  |  482 b   |  24 lines

  1. /* RadioAssociation.h
  2.  *
  3.  * You may freely copy, distribute, and reuse the code in this example.
  4.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  5.  * fitness for any particular use.
  6.  *
  7.  * Written by NeXT Engineering
  8.  *
  9.  */
  10.  
  11. #import <eointerface/EOAssociation.h>
  12.  
  13. @class Window;
  14.  
  15. @interface RadioAssociation: EOAssociation
  16. {
  17.     // destination is a matrix of radio buttons
  18. }
  19.  
  20. // Target/action method for destination to send to
  21. - controlActed:sender;
  22.  
  23. @end
  24.